supervisor mode - определение. Что такое supervisor mode
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое supervisor mode - определение

WIKIMEDIA DISAMBIGUATION PAGE
Modes; MODE; Mode (disambiguation); MoDe
Найдено результатов: 808
supervisor mode      
(Or "supervisor state") An execution mode on some processors which enables execution of all instructions, including privileged instructions. It may also give access to different a address space, to memory management hardware and to other peripherals. This is the mode in which the operating system usually runs. Opposite: user mode. (1995-02-15)
Supervisor Mode Access Prevention         
FEATURE OF SOME CPU IMPLEMENTATIONS SUCH AS THE INTEL BROADWELL MICROARCHITECTURE THAT ALLOWS SUPERVISOR MODE PROGRAMS TO OPTIONALLY SET USER-SPACE MEMORY MAPPINGS SO THAT ACCESS TO THOSE MAPPINGS FROM SUPERVISOR MODE WILL CAUSE A TRAP
Supervisor mode access prevention
Supervisor Mode Access Prevention (SMAP) is a feature of some CPU implementations such as the Intel Broadwell microarchitecture that allows supervisor mode programs to optionally set user-space memory mappings so that access to those mappings from supervisor mode will cause a trap. This makes it harder for malicious programs to "trick" the kernel into using instructions or data from a user-space program.
Visual effects supervisor         
RESPONSIBLE FOR ACHIEVING THE CREATIVE AIMS OF THE DIRECTOR AND/OR PRODUCERS THROUGH THE USE OF VISUAL EFFECTS
Visual Effects Supervisor; VFX Supervisor; Visual Effects Editor
In the context of film and television production, a visual effects supervisor is responsible for achieving the creative aims of the director or producers through the use of visual effects.Creativeskillset.
Airplane mode         
  • Airplane mode icon
  • Airplane mode in a laptop keyboard
  • Smartphone with airplane mode turned on
SETTING AVAILABLE ON MANY ELECTRONIC DEVICES
Flight Mode; Offline Mode; Flight mode; Airplane Mode; Plane mode; Aeroplane mode; Aeroplane Mode
Airplane mode (also known as aeroplane mode, flight mode, offline mode, or standalone mode) is a setting available on smartphones and other portable devices. When activated, this mode suspends the device's radio-frequency (RF) signal transmission technologies (i.
Script supervisor         
OVERSEES THE CONTINUITY OF SCENES DURING FILMMAKING
Daily editor log; Script Supervisor; Continuity clerk; Daily Editor Log; Script girl; Continuity girl; Continuity girls; Script sup; Continuity supervisor; Script supervision; Scripty
A script supervisor (also called continuity supervisor or script) is a member of a film crew who oversees the continuity of the motion picture including wardrobe, props, set dressing, hair, makeup and the actions of the actors during a scene. The notes recorded by the script supervisor during the shooting of a scene are used to help the editor cut the scene.
Unreal mode         
VARIANT OF REAL MODE IN X86 COMPUTING
Big real mode; Flat real mode; Paged real mode; Huge real mode; 32-bit real mode; Big unreal mode; Huge unreal mode; Real big mode; Voodoo Memory Manager; Voodoo Memory Management; Voodoo Memory Management System; Real Big Mode; Big Real Mode; Flat Real Mode; HugeRealMode; HugeRealMode driver; Pseudo real execution mode; Unreal execution mode; 386 real big mode; 386 Real Big Mode; 386 big mode; 386 Big Mode; Real-mode flat memory model; Pseudo-real execution mode; Pseudo real mode; Pseudo-real mode; Unreal Mode
In x86 computing, unreal mode, also big real mode, huge real mode, flat real mode, or voodoo mode is a variant of real mode, in which one or more segment descriptors has been loaded with non-standard values, like 32-bit limits allowing access to the entire memory. Contrary to its name, it is not a separate addressing mode that the x86 processors can operate in.
Mode (music)         
  • scale]]
  • subtonium]]'' (tone below the final).
  • The [[introit]] ''Jubilate Deo'', from which [[Jubilate Sunday]] gets its name, is in Mode 8.
  • Interval sequences for each of the modern modes, showing the relationship between the modes as a shifted grid of intervals.
  • p=255}}</ref>
TYPE OF MUSICAL SCALE
Musical modes; Greek mode; Modal music; Properties of musical modes; Ecclesiastical mode; Eastern modes; Modes musical; Modes (music); Modality (music); Modal scale; Musical mode
In music theory, the term mode or modus is used in a number of distinct senses, depending on context.
Protected mode         
  • Virtual segments of 80286
  • Paging (on Intel 80386) with page size of 4K
  • An Intel 80386 microprocessor
  • Example of privilege ring usage in an operating system using all rings
  • Common method of using paging to create a virtual address space
OPERATIONAL MODE OF X86-COMPATIBLE CENTRAL PROCESSING UNITS
Pmode; Protected Virtual Address Mode; Protected Mode; Protected virtual address mode; Protected-mode; 286 protected mode
In computing, protected mode, also called protected virtual address mode, is an operational mode of x86-compatible central processing units (CPUs). It allows system software to use features such as virtual memory, paging and safe multi-tasking designed to increase an operating system's control over application software.
Supervisor         
MANAGER IN A BUSINESS, EVENT, OR OTHER ENDEAVOUR
Gaffer (boss); Superviser; SPRV; First-line supervisor; Thesis supervisor
·noun A spectator; a looker-on.
II. Supervisor ·noun One who supervises; an overseer; an inspector; a superintendent; as, a supervisor of schools.
protected mode         
  • Virtual segments of 80286
  • Paging (on Intel 80386) with page size of 4K
  • An Intel 80386 microprocessor
  • Example of privilege ring usage in an operating system using all rings
  • Common method of using paging to create a virtual address space
OPERATIONAL MODE OF X86-COMPATIBLE CENTRAL PROCESSING UNITS
Pmode; Protected Virtual Address Mode; Protected Mode; Protected virtual address mode; Protected-mode; 286 protected mode
An operating mode of Intel 80x86 processors. The opposite of real mode. The Intel 8088, Intel 8086, Intel 80188 and Intel 80186 had only real mode, processors beginning with the Intel 80286 feature a second mode called protected mode. In real mode, addresses are generated by adding an address offset to the value of a segment register shifted left four bits. As the segment register and address offset are 16 bits long this results in a 20-bit address. This is the origin of the one megabyte (2^20) limit in real mode. There are 4 segment registers on processors before the {Intel 80386}. The 80386 introduced two more segment registers. Which segment register is used depends on the instruction, on the addressing mode and of an optional instruction prefix which selects the segment register explicitly. In protected mode, the segment registers contain an index into a table of segment descriptors. Each segment descriptor contains the start address of the segment, to which the offset is added to generate the address. In addition, the segment descriptor contains memory protection information. This includes an offset limit and bits for write and read permission. This allows the processor to prevent memory accesses to certain data. The operating system can use this to protect different processes' memory from each other, hence the name "protected mode". While the standard register set belongs to the CPU, the segment registers lie "at the boundary" between the CPU and MMU. Each time a new value is loaded into a segment register while in protected mode, the corresponding descriptor is loaded into a descriptor cache in the (Segment-)MMU. On processors before the Pentium this takes longer than just loading the segment register in real mode. Addresses generated by the CPU (which are segment offsets) are passed to the MMU to be checked against the limit in the segment descriptor and are there added to the segment base address in the descriptor to form a linear address. On a 80386 or later, the linear address is further processed by the paged MMU before the result (the physical address) appears on the chip's address pins. The 80286 doesn't have a paged MMU so the linear address is output directly as the physical address. The paged MMU allows for arbitrary remapping of four klilobyte memory blocks (pages) through a translation table stored in memory. A few entries of this table are cached in the MMU's Translation Lookaside Buffer to avoid excessive memory accesses. After processor reset, all processors start in real mode. Protected mode has to be enabled by software. On the 80286 there exists no documented way back to real mode apart from resetting the processor. Later processors allow switching back to real mode by software. Software which has been written or compiled to run in protected mode must only use segment register values given to it by the operating system. Unfortunately, most application code for MS-DOS, written before the 286, will fail in protected mode because it assumes real mode addressing and writes arbitrary values to segment registers, e.g. in order to perform address calculations. Such use of segment registers is only really necessary with data structures that are larger than 64 kilobytes and thus don't fit into a single segment. This is usually dealt with by the huge memory model in compilers. In this model, compilers generate address arithmetic involving segment registers. A solution which is portable to protected mode with almost the same efficiency would involve using a table of segments instead of calculating new segment register values ad hoc. To ease the transition to protected mode, Intel 80386 and later processors provide "virtual 86 mode". (1995-03-29)

Википедия

Mode

Mode (Latin: modus meaning "manner, tune, measure, due measure, rhythm, melody") may refer to: